From e83ff50a55fd2349886860cf0f23f597605943d7 Mon Sep 17 00:00:00 2001 From: Andrew Cooper Date: Fri, 6 Jan 2017 20:03:08 +0000 Subject: [PATCH] x86/emul: Replace opencoded extraction of IOPL from eflags Signed-off-by: Andrew Cooper Reviewed-by: Jan Beulich --- xen/arch/x86/x86_emulate/x86_emulate.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xen/arch/x86/x86_emulate/x86_emulate.c b/xen/arch/x86/x86_emulate/x86_emulate.c index 98ba7c53b8..c4ba79b0cd 100644 --- a/xen/arch/x86/x86_emulate/x86_emulate.c +++ b/xen/arch/x86/x86_emulate/x86_emulate.c @@ -1157,7 +1157,7 @@ _mode_iopl( int cpl = get_cpl(ctxt, ops); if ( cpl == -1 ) return -1; - return (cpl <= ((ctxt->regs->_eflags >> 12) & 3)); + return cpl <= MASK_EXTR(ctxt->regs->_eflags, EFLG_IOPL); } #define mode_ring0() ({ \ -- 2.30.2